home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / pcr / pcr4_4.lha / DIST / debugnub / INCLUDE / xr / CirioNubPrivate.h < prev    next >
C/C++ Source or Header  |  1992-03-03  |  2KB  |  57 lines

  1. /* begincopyright
  2.   Copyright (c) 1988 Xerox Corporation. All rights reserved.
  3.   Use and copying of this software and preparation of derivative works based
  4.   upon this software are permitted. Any distribution of this software or
  5.   derivative works must comply with all applicable United States export
  6.   control laws. This software is made available AS IS, and Xerox Corporation
  7.   makes no warranty about the software, its performance or its conformity to
  8.   any specification. Any person obtaining a copy of this software is requested
  9.   to send their name and post office or electronic mail address to:
  10.     PCR Coordinator
  11.     Xerox PARC
  12.     3333 Coyote Hill Rd.
  13.     Palo Alto, CA 94304
  14.   endcopyright */
  15.  
  16. /*
  17.  * CirioNubPrivate.h
  18.  *
  19.  * Demers, November 2, 1989 10:11:59 am PST
  20.  *
  21.  * Private definitions for CirioNub RPC Runtime.
  22.  */
  23.  
  24. #ifndef _CIRIO_NUB_PRIVATE_
  25. #define _CIRIO_NUB_PRIVATE_
  26.  
  27. #include "xr/ThreadsSlaveIOP.h"
  28. #include "xr/CirioNubProtocol.h"
  29. #include "xr/CirioNubInstall.h"
  30.  
  31. #include <sys/types.h>
  32. #include <netinet/in.h>
  33.  
  34.  
  35. typedef struct CirioNubProcEntry {
  36.     struct CirioNubProcEntry *cnpe_next;
  37.     int cnpe_procID;
  38.     CirioNubProc cnpe_proc;
  39.     char *cnpe_clientData;
  40. };
  41.  
  42. typedef struct CirioNubDataRep {
  43.     int cnd_installed;
  44.     XR_Slave cnd_slave;
  45.     int cnd_listenerPort;
  46.     int cnd_listenerFD;
  47.     int cnd_rpcFD;
  48.     void (*cnd_initProc)(/* unsigned clientData */);
  49.     unsigned cnd_initClientData;
  50.     int cnd_numHdrs;
  51.     int *cnd_callBuf;
  52.     int cnd_callBufBytes;
  53.     struct CirioNubProcEntry *cnd_procEntries[1];
  54. } * CirioNubData;
  55.  
  56. #endif /* _CIRIO_NUB_PRIVATE_ */
  57.